From 390c515c8d9e18431b5688d17fcf562aa0498945 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Thu, 9 May 2013 18:10:12 -0700 Subject: [PATCH] Removed unused join array from ActiveUser conds. * The table was not in the table array so this did not affect the SQL, but was still unused cruft. Change-Id: Ia5aa934fb6e6de9daeb0072d902df6e681575fd7 --- includes/specials/SpecialActiveusers.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/includes/specials/SpecialActiveusers.php b/includes/specials/SpecialActiveusers.php index a2978e3bcc..c84beb1016 100644 --- a/includes/specials/SpecialActiveusers.php +++ b/includes/specials/SpecialActiveusers.php @@ -120,10 +120,6 @@ class ActiveUsersPager extends UsersPager { 'GROUP BY' => array( 'rc_user_text' ), 'USE INDEX' => array( 'recentchanges' => 'rc_user_text' ) ), - 'join_conds' => array( // check for suppression blocks - 'ipblocks' => array( 'LEFT JOIN', - array( 'rc_user=ipb_user', 'ipb_deleted' => 1 ) ), - ), 'conds' => $conds ); } -- 2.20.1